/* External Stylesheet (styles.css) */

/* Reset some basic elements */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}


.about-section {
    padding: 20px 0;
    background: linear-gradient(to right, #01154b, #184e90);
    color: #fff;
    text-align: center;
}

.about-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    
}

.about-header p {
    font-size: 26px;
    margin-bottom: 20px;
  
    border-radius: 10px;
    color: #a3ffdf;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.about-image img {
    height: 50px;
}

.about-text {
    flex: 1;
    margin-left: 20px;
}

.about-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text {
        margin: 20px 0 0 0;
    }
}


